projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
748dc60
)
(r_alloc_check): Don't check alignment of h->start.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 7 Apr 1996 16:44:38 +0000
(16:44 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 7 Apr 1996 16:44:38 +0000
(16:44 +0000)
src/ralloc.c
patch
|
blob
|
history
diff --git
a/src/ralloc.c
b/src/ralloc.c
index dca5c2c6004255cbede84a7675efa7858a77082d..179fd314928efd29c7f1d186b269e0b6b7986396 100644
(file)
--- a/
src/ralloc.c
+++ b/
src/ralloc.c
@@
-1164,7
+1164,11
@@
r_alloc_check ()
{
assert (h->prev == ph);
assert ((POINTER) ROUNDUP (h->end) == h->end);
+#if 0 /* ??? The code in ralloc.c does not really try to ensure
+ the heap start has any sort of alignment.
+ Perhaps it should. */
assert ((POINTER) MEM_ROUNDUP (h->start) == h->start);
+#endif
assert ((POINTER) MEM_ROUNDUP (h->bloc_start) == h->bloc_start);
assert (h->start <= h->bloc_start && h->bloc_start <= h->end);